Copy the display_key as well. (#330389, Markku Vire)
authorMatthias Clasen <mclasen@redhat.com>
Wed, 8 Feb 2006 15:19:07 +0000 (15:19 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 8 Feb 2006 15:19:07 +0000 (15:19 +0000)
2006-02-08  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkfilesystem.c (gtk_file_info_copy): Copy the display_key
as well.  (#330389, Markku Vire)

ChangeLog
ChangeLog.pre-2-10
gtk/gtkfilesystem.c

index 2366a773457f04270436df8cf4670a54936c32e6..845f9e46cfcaf0f908b0e5a4b61ffa4b83269d4f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-02-08  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilesystem.c (gtk_file_info_copy): Copy the display_key
+       as well.  (#330389, Markku Vire)
+
 2006-02-08  Tor Lillqvist  <tml@novell.com>
 
        * gtk-zip.sh.in: Drop the timestamp from the zipfile names.
index 2366a773457f04270436df8cf4670a54936c32e6..845f9e46cfcaf0f908b0e5a4b61ffa4b83269d4f 100644 (file)
@@ -1,3 +1,8 @@
+2006-02-08  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilesystem.c (gtk_file_info_copy): Copy the display_key
+       as well.  (#330389, Markku Vire)
+
 2006-02-08  Tor Lillqvist  <tml@novell.com>
 
        * gtk-zip.sh.in: Drop the timestamp from the zipfile names.
index b679f6c725901e5131bf518d18754fb040f56663..60443905702d9ced68099af841465d763a4541ec 100644 (file)
@@ -87,6 +87,8 @@ gtk_file_info_copy (GtkFileInfo *info)
   new_info = g_memdup (info, sizeof (GtkFileInfo));
   if (new_info->display_name)
     new_info->display_name = g_strdup (new_info->display_name);
+  if (new_info->display_key)
+    new_info->display_key = g_strdup (new_info->display_key);
   if (new_info->mime_type)
     new_info->mime_type = g_strdup (new_info->mime_type);